home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / bbs / baby103.zip / SYSOP.DOC < prev    next >
Text File  |  1997-04-30  |  8KB  |  239 lines

  1.                                Baby Derby
  2.                                ----------
  3.  
  4.  Let your users join in the fun of you having a baby. Just a simple
  5. voteing door that creates an ansi to keep track of who has voted and
  6. what they voted as.
  7.  
  8.  
  9. Licensing and Distribution
  10. --------------------------
  11.  This program is FREEWARE! Why would you want to register something that
  12. you are only going to use once or twice anyway? But for Feed back I can be
  13. reached at the following addresses:
  14.  
  15. Fido     :     1:124/7013
  16. Linear   :     121:2110/101
  17. Fido Echo:     DoorGames Moderated by Ruth Argust (2nd best moderator in the
  18.                                                     West :)
  19. Home     :     B Turner
  20.                SMYC Software
  21.                12235 China Lake DR
  22.                Dallas Texas 75253
  23.  
  24.  If for some strange reason you feel that you want to donate something
  25. for the time that it took to write this door, Please feel free. Being a
  26. SysOp with a child is a costly job as well.
  27.  
  28. If this Program kill's your Hd or hurt's your bbs I am sorry, But that is
  29. about it. I will hold NO responcibility for anything that Happens to your
  30. System, or personal Life.. :)
  31.  
  32. Files Included in this Archive
  33. ------------------------------
  34. BABY     EXE       Main Exe File
  35. BRESULT  ANS       Ansi that the Users will see
  36. BRESULT  ASC       Ascii that the Users will see
  37. WHATS    NEW       What is new in this revision
  38. FILE_ID  DIZ       Used for BBS listing
  39. RESET    BAT       Batch file for reseting
  40. BABY     CFG       Example Config file
  41. RESULT   ANS       Used in resetting the ANSI
  42. RESULT   ASC       Used in resetting the ASCII
  43. RUN      BAT       Quick running in local mode
  44. SYSOP    DOC       What you are reading now
  45. BABY     ANS & ASC Screens that can be used to advertize      
  46.  
  47. Files that will be created
  48. --------------------------
  49. BUSY     FLG       Used for multi node systems
  50. NAMES    DAT       Record of who has run the door
  51.  
  52. Installation
  53. ------------
  54. The following drop files are supported by Baby Derby.
  55.  
  56.    PCBOARD.SYS     DORINFOx.DEF
  57.    USERS.SYS       SFDOORS.DAT
  58.    DOOR.SYS        USERINFO.DAT
  59.    CALLINFO.BBS    GTUSER.BBS
  60.  
  61. Edit the file Baby.CFG to fit your needs.
  62. For Example:
  63.  
  64. ;C:\BBS\DOOR.SYS         <--- Path to dropfile
  65. ;RabbitLand II           <--- BBS Name
  66. ;Bryan                   <--- Sysop's first name
  67. ;Turner                  <--- Sysop's last name
  68. ;0                       <--- For GTUSER (0 if not using GTUSER)
  69. ;0                       <--- For GTUSER (0 if not using GTUSER)
  70. ;Marla & Bryan Turner    <--- Parent's Names
  71. ;1/30/96                 <--- Expected B-Day
  72. ;Sysop Access for a Day! <--- Prize if any
  73. ;Y                       <--- If you want users to only vote once
  74. ;                             put Y Else put N
  75.  
  76. Add the command line below to your batchfile to start the door.
  77.  
  78. BABY BABY.CFG
  79.  
  80. For Example:
  81.  
  82. @ECHO OFF
  83. C:
  84. CD\BABY
  85. BABY BABY.CFG      <-----Command Line that starts the door.
  86. CD\RA
  87.  
  88. To run the door in LOCAL mode type BABY BABY.CFG /LOCAL.
  89.  
  90. MULTI LINE CONFIG
  91. -----------------
  92. Copy the BABY.CFG to BABY1.CFG BABY2.CFG ect.. Where BABY1 is for node 1.
  93.  
  94. Call it the same way:
  95.  
  96. BABY BABY1.CFG
  97.  
  98.  
  99. Maintenance
  100. ---------
  101.  There is no maintance. If you want to reset all you have to do is run the
  102. reset.bat this will clear out your ANS and ASCII files and Delete the
  103. NAMES.DAT
  104.  
  105. Fossil Driver Support
  106. ---------------------
  107. This door supports the use of Fossil drivers.  To tell it to use the
  108. Fossil driver instead of the standard COM ports, just put /FD on the
  109. command line when running the door. For example:
  110.      BABY BABY.CFG /FD
  111. indicates that a Fossil driver is present and should be used. If no Fossil
  112. driver is detected, the door will print a message to that effect and exit
  113. the door gracefully. (Well not really all that gracefully)
  114.  
  115. Environment Variables
  116. ---------------------
  117. This door supports COM 1-4 on the standard IRQ's -
  118. COM1/COM3 = IRQ4 and COM2/COM4 = IRQ3. If you wish to use a non-standard IRQ,
  119. add the IRQ number after the configuration filename. Let's assume you want
  120. to use COM1 and IRQ5. The command line passed to baby would be:
  121.     BABY BABY.CFG /5  or
  122.     BABY BABY.CFG /%IRQ%  for the environment variable.
  123. The /5 tells the door to use IRQ5 rather than the standard IRQ4
  124. that is normally used with COM1. No /x parameter is needed for the standard
  125. IRQ's.
  126.  
  127. When specifying the location of the system file on line 1 of the BABY.CFG
  128. file, you may use the environment variables %pcbdrive%, %pcbdir%, %pcbnode%,
  129. and %wcnodeid%. Some examples:
  130.  PCBoard:
  131.    USERS.SYS in C:\PCB           - %pcbdrive%%pcbdir%\USERS.SYS
  132.    USERS.SYS in C:\PCB\NODE1     - %pcbdrive%%pcbdir%\NODE%pcbnode%\USERS.SYS
  133.  
  134.  Wildcat!:
  135.    USERINFO.DAT in C:\WC\NODE1   - C:\WC\NODE%wcnodeid%
  136.  
  137. Non-PCBoard systems may use the PCB environment variables by setting them
  138. in either AUTOEXEC.BAT or in the batch that runs the door. For example:
  139.  SET PCBDRIVE=C:
  140.  SET PCBDIR=\BBSDIR
  141.  SET PCBNODE=1
  142.  
  143. 486DX CPU's
  144. -----------
  145. Some math coprocessors in 486DX CPUs cannot handle floating point math.
  146. This can show up as an ERROR 5, a keyboard timeout, etc.
  147.  
  148. Fortunately there is an easy fix for this problem. Simply place the following
  149. line in the AUTOEXEC.BAT file:
  150.  
  151.     SET NO87=ON
  152.  
  153. Support BBS:
  154. ------------
  155. RabbitLand II    1-214-286-3443       Fido 1:124/7013  Lin 121:2110/101
  156. Bryan Turner
  157.  
  158.  
  159. Special Thanks:
  160. ---------------
  161.  I have to thank David Moses for getting me Started in this, and for being
  162. up at 12:30am to tell me that I can't spell. Thanks David! (I think)
  163.  Also Glen O'gorman and his Wife. Hell with out her he would not have been
  164. able to Beta Test for me.
  165.  And Last but not least My Family. Marla (My Wife) Brianna (My Daughter that
  166. this was written for) Frisco (Dog #1) Rudy (Expensive Dog #2) Shorty (My Cat)
  167. and Beemer (My White Hooded Rat).
  168.  
  169.  
  170. Where to find this DOOR?
  171. ------------------------
  172. Freq BABY from 1:124/7013
  173. Or Call 1-214-286-3443 and Look in the DOOR File Directory
  174.  
  175.  
  176.  
  177. Other Products from SMYC Software (All can be freqed from 1:124/7013):
  178.  
  179. Baby Derby
  180. ----------
  181. Let your users join in the fun of your upcoming Baby. Lets your users
  182. Guess on the date, weight, time of day, and Sex of your baby. You can
  183. use this for your users babies as well. Freeware!
  184. FREQ  -  BABY
  185.  
  186. Echo Request Door
  187. -----------------
  188. Let your users tell you what echos they want by actually going through
  189. your *.na files. has option to let them write you netmail or actually
  190. turn on the echo it's self via areafix to your hub. Shareware 10$
  191. FREQ  -  EREQ
  192.  
  193. Request
  194. -------
  195. Let your users  request the files they read about in the Echos. This
  196. utility will write the Netmail to the Long Distance node telling him/her
  197. where the user saw about the file, and put it on hold for you to decide
  198. if you want to release it or not. Freeware
  199. FREQ - REQUEST
  200.  
  201. Bre User Survey Door
  202. --------------------
  203. Let you Player's in your BRE league vote as to how that want the next
  204. reset set up.  Includes SysOp functions so that you can send the
  205. average votes to the League Coordinator as well as reset & view the
  206. names of who voted.
  207. Shareware 10$
  208. FREQ - BUSD
  209.  
  210. Address Showr'
  211. --------------
  212. Let your users see there E-mail address on your bbs.
  213. Freeware!
  214. FREQ  - ADDRESS
  215.  
  216. SRVIEW
  217. ------
  218.  SRView the first utility that will let your users see all the bulletins
  219. that all the Solar Realms IBBS games create with out having to go into the
  220. games to see them. Thus not locking down nodes on all of the SRGAMES. 
  221. Shareware 5$
  222. FREQ  -  SRVIEW
  223.  
  224. POLL
  225. ----
  226. This is another one of my Save Time Utils, although I should have read
  227. the doc's that came with InterMail as it does the same thing that this
  228. does, although this is easyer to understand. Poll will write a message 
  229. to as meny node numbers that you would like at one time, Thus making your
  230. system Poll them to get your mail. 
  231. FREEWARE!
  232. FREQ - POLL
  233.  
  234. HUBMAKE
  235. -------
  236. This is a real simple Util that will create a text file with everyones address
  237. in it to send a message out to the entire Network of your choice. 
  238. FREEWARE!
  239. FREQ - HUBMAKE